home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CDICTION / CPASCALS.H < prev    next >
Text File  |  1990-01-12  |  342b  |  18 lines

  1. /*
  2.     useless class created soley for testing CDictionary
  3. */
  4. #define _H_CPascalString
  5.  
  6. /* simple object for testing dictionary. Just holds a pascal string */
  7.  
  8. #include "CObject.h"
  9. #include "defs.h"
  10.  
  11. struct CPascalString : CObject
  12. {
  13.     Str255    itsString;
  14.     
  15.     virtual void SetString( StringPtr string);
  16.     virtual void GetString( StringPtr string);
  17.  
  18. };